home *** CD-ROM | disk | FTP | other *** search
/ Plug-In Power Pack for Netscape Communicator / Plug-In Power Pack for Netscape Communicator.iso / plugins / dataviews / dvtools / examples / utilities / makefile next >
Encoding:
Makefile  |  1997-05-08  |  893 b   |  45 lines

  1. # makefile for DVdraw
  2.  
  3. # The dvwin32.mak file has macros used in building
  4. # DVdraw, example programs and demos.
  5.  
  6.  
  7. include <dvwin32.mak>
  8.  
  9. .c.obj:
  10.     $(CC) \
  11.     $(INCDIRS) -c $(CFLAGS) \
  12.         -Fo$* \
  13.     $< 
  14.  
  15. viewdump.exe: viewdump.obj
  16.     $(LINK) viewdump.obj \
  17.     $(LINKFLAGS) $(conflags) -out:viewdump.exe \
  18.     $(DV_LIBS) $(conlibs)
  19.  
  20. tx2vt.exe:tx2vt.obj
  21.     $(LINK) tx2vt.obj \
  22.     $(LINKFLAGS) $(conflags) -out:tx2vt.exe \
  23.     $(DV_LIBS) $(conlibs)
  24.  
  25. vt2tx.exe: vt2tx.obj
  26.     $(LINK) vt2tx.obj \
  27.     $(LINKFLAGS) $(conflags) -out:vt2tx.exe \
  28.     $(DV_LIBS) $(conlibs)
  29.  
  30. setinputflag.exe: setinputflag.obj
  31.     $(LINK) setinputflag.obj \
  32.     $(LINKFLAGS) $(conflags) -out:setinputflag.exe \
  33.     $(DV_LIBS) $(conlibs)
  34.  
  35. viewconv.exe: viewconv.obj
  36.     $(LINK) viewconv.obj \
  37.     $(LINKFLAGS) $(guiflags) -out:viewconv.exe \
  38.     $(DV_LIBS) $(guilibs)
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.